survey_option = int( input("Do You Want To Fill Out A Short Survey? 1 For Yes. 2 For No.") ) if survey_option == 1: print("Survey Accepted") if survey_option == 2: exit(0) if survey_option >= 3: exit(0) if survey_option <= 0: exit(0) name = input("What Is Your Name?") print("Survey Participant:", name) age = int(input("How Old Are You? (In Years)") ) if age in range( 1, 125 ): print("Survey Participant Age:", age) if age <= 0: print("Survey Participant Age:", age ," Invalid Age") if age >= 126: print("Survey Participant Age:", age ," Invalid Age") software = input("How Did You Get This Software?") print( "How Did The Software Come Into The Possession Of", name ,"? Qoute:", software ) survey_thanks = input("Thank You For Filling Out This Short Survey. It Is Currently Being Sent To The United States Government For Investagation. Anything To Say For Yourself?") print( "This Is What", name ,"Thinks After Realizing This Was A Survey Done By The United States Government. Qoute:", survey_thanks) # print("Survey Refused") # print("Invalid Digit") # print("Invalid Digit")